Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633414 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/105 - Speech Recognitation

style.css cody/swapnilsparsh/30DaysOfJavaScript/105 - Speech Recognitation/style.css
87 Views
0 Comments
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}

html{
font-family: "Montserrat";
index.html cody/swapnilsparsh/30DaysOfJavaScript/105 - Speech Recognitation/index.html
298 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech~Recog🎙</title>
<link rel="stylesheet" href="style.css">
readme.md cody/swapnilsparsh/30DaysOfJavaScript/105 - Speech Recognitation/readme.md
161 Views
0 Comments
# Speech Recognition using JS :
---
## Describtion :
> It's a Speech Recognition site which will take permission from user to acess the microphone , and whatever user will say that will be written into a different Div Section .
---

## Tech stack used:
HTML5, CSS3, JavaScript
script.js cody/swapnilsparsh/30DaysOfJavaScript/105 - Speech Recognitation/script.js
151 Views
0 Comments
const texts= document.querySelector(".texts");
window.SpeechRecognition= window.SpeechRecognition || window.webkitSpeechRecognition;

const recognition=new SpeechRecognition();
recognition.interimResults=true;
let p=document.createElement("p");

recognition.addEventListener("result", (e)=>{